c++ 类 类指针&new对象
class HelloWorld{ setupUi(x){}; } HelloWorld *ui; ui=new HelloWorld; ui->setup(x); ...
class HelloWorld{ setupUi(x){}; } HelloWorld *ui; ui=new HelloWorld; ui->setup(x); ...
1、https://blog.csdn.net/weixin_41157654/article/details/80820520 最近跟着前辈们打打下手,顺便研究研究代码,以前没怎么用过QT和C++ ...
1、格式 1)Foo(const Foo& other) \\复制构造函数 \\左值赋值 2)Foo(Foo&& other) \\移动构造函数 \\右值赋值 3) ...